const go/token.VAR

16 uses

	go/token (current package)
		token.go#L125: 	VAR
		token.go#L231: 	VAR:    "var",

	go/doc
		doc.go#L136: 		Vars:       sortedValues(r.values, token.VAR),
		reader.go#L603: 			case token.CONST, token.VAR:
		reader.go#L872: 			Vars:    sortedValues(t.values, token.VAR),

	go/parser
		parser.go#L425: 	token.VAR:         true,
		parser.go#L432: 	token.VAR:    true,
		parser.go#L2092: 		if p.tok == token.VAR {
		parser.go#L2431: 	case token.CONST, token.TYPE, token.VAR:
		parser.go#L2547: 	case token.VAR:
		parser.go#L2830: 	case token.CONST, token.VAR:
		resolver.go#L452: 		case token.CONST, token.VAR:
		resolver.go#L456: 				if n.Tok == token.VAR {

	go/printer
		nodes.go#L1746: 			if n > 1 && (d.Tok == token.CONST || d.Tok == token.VAR) {

	go/types
		decl.go#L413: 				case token.VAR:
		labels.go#L126: 			if d, _ := s.Decl.(*ast.GenDecl); d != nil && d.Tok == token.VAR {